home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / langs / dl_exsrc.zoo / fsize.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-06-27  |  151 b   |  11 lines

  1. #include <stat.h>
  2.  
  3. static struct stat S;
  4.  
  5. long fsize(const char *name)
  6. {
  7.   if (stat(name, &S) < 0)
  8.     return -1;
  9.   else return S.st_size;
  10. }
  11.